home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWGraphx / Include / PRGrUtil.h < prev    next >
Encoding:
Text File  |  1996-04-25  |  1.5 KB  |  48 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRGrUtil.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef PRGRUTIL_H
  11. #define PRGRUTIL_H
  12.  
  13. #ifndef FWRECT_H
  14. #include "FWRect.h"
  15. #endif
  16.  
  17. #ifndef FWPOINT_H
  18. #include "FWPoint.h"
  19. #endif
  20.  
  21. //========================================================================================
  22. //    Private Utilities
  23. //========================================================================================
  24.  
  25. void         SL_API    FW_PrivCalcArcPoints(
  26.                 const FW_CPlatformRect& rect, 
  27.                 short angle,
  28.                 FW_CPlatformPoint& arcPoint);
  29.  
  30. //========================================================================================
  31. //    Windows Utilities
  32. //========================================================================================
  33.  
  34. #ifdef FW_BUILD_WIN
  35. void             SL_API    FW_PrivWinGetDisplayColorInfo(short& planeCount, short& bitsPixel);
  36. #endif
  37.  
  38. //========================================================================================
  39. //    Macintosh Utilities
  40. //========================================================================================
  41.  
  42. #ifdef FW_BUILD_MAC
  43. void             SL_API    FW_PrivMacGetPortTextStyle(TextStyle& theTextStyle);
  44. void             SL_API    FW_PrivMacSetPortTextStyle(const TextStyle& theTextStyle);
  45. #endif
  46.  
  47. #endif // PRGRUTIL_H
  48.